home *** CD-ROM | disk | FTP | other *** search
/ Internet Publisher's Toolbox 2.0 / Internet Publisher's Toolbox.iso / internet / ntserver / wtsource / transprt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-16  |  888 b   |  38 lines

  1. /* this is the header for transprt.c
  2.  * -brewster
  3.  * revise log:
  4.  *  11/14/90   -Tracy Shen
  5.  *   add the followinf functions:
  6.  *   transportCodeH, transportDecodeH, transportCodeI, transportDecodeI
  7.  */
  8.  
  9. /* Copyright (c) CNIDR (see ../COPYRIGHT) */
  10.  
  11.  
  12. #ifndef TRANSPRT_H
  13. #define TRANSPRT_H
  14.  
  15. #include "cdialect.h"
  16.  
  17. #include "cutil.h"
  18.  
  19. #ifdef __cplusplus
  20. /* declare these as C style functions */
  21. extern "C"
  22.     {
  23. #endif /* def __cplusplus */
  24.  
  25. boolean transportCode _AP((long encoding,char* data,long* len));
  26. boolean transportDecode _AP((long encoding,char* data,long* len));
  27.  
  28. void transportCodeH _AP((char* data,long* len));
  29. void transportDecodeH _AP((char* data,long* len));
  30.  
  31. void transportCodeI _AP((char* data,long* len));
  32. void transportDecodeI _AP((char* data,long* len));
  33.  
  34. #ifdef __cplusplus
  35.     }
  36. #endif /* def __cplusplus */
  37. #endif /* ndef TRANSPRT_H */
  38.